home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / shell / mscope / src / icon.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-30  |  735 b   |  30 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <winb.h>
  5. #include <te.h>
  6. #include <fntb.h>
  7. #include <gui.h>
  8.  
  9. /* id = 512, x = 7, y = 7, color = 2, size = 7 Byte */
  10. unsigned char iconICON512[] = {
  11.      0x07, 0x07, 0x00, 0x01,
  12.      0x83, 0x45, 0x29, 0x11, 0x29, 0x45, 0x83
  13. } ;
  14. /* id = 513, x = 7, y = 7, color = 2, size = 7 Byte */
  15. unsigned char iconICON513[] = {
  16.      0x07, 0x07, 0x00, 0x01,
  17.      0x00, 0x10, 0x38, 0x7c, 0xfe, 0xfe, 0x00
  18. } ;
  19. /* id = 514, x = 7, y = 7, color = 2, size = 7 Byte */
  20. unsigned char iconICON514[] = {
  21.      0x07, 0x07, 0x00, 0x01,
  22.      0x00, 0xfe, 0xfe, 0x7c, 0x38, 0x10, 0x00
  23. } ;
  24.  
  25. int iconMaxId = 514 ;
  26. unsigned char *iconTbl[] = {
  27.      iconICON512, iconICON513, iconICON514
  28. } ;
  29.  
  30.